iT邦幫忙

2023 iThome 鐵人賽

DAY 6
0
自我挑戰組

CPE 49題訓練系列 第 6

YKL43.UVA10420 List of Conquests YKL32.UVA10008 What's Cryptanalysis

  • 分享至 

  • xImage
  •  

List of Conquests

T=input()
arr=[]
for t in range(int(T)):
	a=list(input().split())
	arr.append(a[0])
dic={}
for i in arr:
	if i not in dic:
		dic[i]=1
	else:
		dic[i]+=1
ans=sorted(dic.items(),key=lambda x:x[0])
ans=sorted(ans,key=lambda x:x[1])
for x,y in ans:
	print('{} {}'.format(x,y))

What's Cryptanalysis

T=input()
arr=[]
for t in range(int(T)):
	arr+=list(input())
dic={}
for i in arr:
	i=i.upper()
	if str.isalpha(i):
		if i not in dic:
			dic[i]=1
		else:
			dic[i]+=1
ans=sorted(dic.items(),key=lambda x:x[0])
ans=sorted(ans,key=lambda x:x[1],reverse=1)
for x,y in ans:
	print('{} {}'.format(x,y))

上一篇
YKL34.UVA10101 Bangla Numbers
下一篇
YKL14.UVA10222 Decode the Mad man YKL15.UVA10252 Common Permutation
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言